home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 19
/
Amiga Plus Leser CD 19.iso
/
Online
/
AmigaTalk
/
general
/
UndefinedObject.st
< prev
Wrap
Text File
|
2000-02-13
|
312b
|
16 lines
"----------------------------------------------------------------"
"'nil' Should be the only Undefined Object in the system. "
"----------------------------------------------------------------"
Class UndefinedObject :Object
[
isNil
^ true
|
notNil
^ false
|
printString
^ 'nil'
]